| Conditions | 4 |
| Paths | 4 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | /** global: GLSR, jQuery */ |
||
| 24 | buildNonce_: function( el ) { // HTMLElement|null |
||
| 25 | if( this.request.nonce )return; |
||
| 26 | if( GLSR.nonce[this.request.action] ) { |
||
| 27 | this.request.nonce = GLSR.nonce[this.request.action]; |
||
| 28 | return; |
||
| 29 | } |
||
| 30 | if( !el )return; |
||
| 31 | this.request.nonce = el.closest( 'form' ).find( '#_wpnonce' ).val(); |
||
| 32 | }, |
||
| 33 | |||
| 61 |